home *** CD-ROM | disk | FTP | other *** search
/ Aminet 20 / Aminet 20 (1997)(GTI - Schatztruhe)[!][Aug 1997].iso / Aminet / dev / c / Mesa2_2ASrc1_6.readme < prev    next >
Text File  |  1997-07-13  |  39KB  |  832 lines

  1. Short:    3D library, OpenGL based, Amiga v1.6
  2. Author:   brianp@ssec.wisc.edu (BrianP) Amiga Port: d94sz@efd.lth.se (Stefan Zivkovic)
  3. Uploader: d94sz@efd.lth.se (Stefan Zivkovic)
  4. Version:  Mesa v2.0 Amiga version 1.6
  5. Type:     dev/c
  6. Requires: System v39, SAS 6.57 or GCC.
  7. Replaces: dev/c/Mesa-2.0_Amiga-1.5.lha
  8.  
  9.                 The Mesa 3-D graphics library
  10.  
  11.              Copyright (C) 1995-1996  Brian Paul
  12.  
  13.  
  14.  
  15. Introduction
  16. ============
  17.  
  18. Mesa is a 3-D graphics library with an API which is very similar to that
  19. of OpenGL*.  To the extent that Mesa utilizes the OpenGL command syntax
  20. or state machine, it is being used with authorization from Silicon Graphics,
  21. Inc.    However, the author makes no claim that Mesa is in any way a
  22. compatible replacement for OpenGL or associated with Silicon Graphics, Inc.
  23. Those who want a licensed implementation of OpenGL should contact a licensed
  24. vendor.    This software is distributed under the terms of the GNU Library
  25. General Public License, see the LICENSE file for details.
  26.  
  27. * OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
  28.  
  29. Miscellaneous
  30. =============
  31.  
  32. There is a Amiga Mesa WWW page:    http://www.efd.lth.se/~d94sz/amesa
  33. and the orginal  Mesa WWW page:    http://www.ssec.wisc.edu/~brianp/Mesa.html
  34.  
  35.  
  36. Since the OpenGL API is used, OpenGL documentation can serve as the
  37. documentation for Mesa's core functions.  Here are a few sources:
  38.  
  39.   Man pages:     http://www.digital.com:80/pub/doc/opengl/
  40.   Spec doc:      http://www.sgi.com/Technology/openGL/glspec/glspec.html
  41.  
  42.  
  43. Author
  44. ======
  45.  
  46. Brian Paul
  47. Space Science and Engineering Center
  48. University of Wisconsin - Madison
  49. 1225 W. Dayton St.
  50. Madison, WI  53706
  51.  
  52. brianp@ssec.wisc.edu
  53.  
  54.  
  55. AMIGA PORT of MESA: THE OPENGL SOFTWARE EMULATION by Stefan Zivkovic
  56. ====================================================================
  57. When I first read about OPENGL in the summer of 1995 I was happy and filled with
  58. joy. A few days later I surfed to the mesa homepage but only to discover that 
  59. there was no Amiga version. In the beginning of 1996 someone released a AMIWIN
  60. version so I took the archive home to try it out, but it stayed packed on my HD.
  61. One day when I was home and playing around with my HD I saw the archive and
  62. started to try to make it work. Without luck as it seemed that you needed 
  63. the AMIWIN Includes and LIBFILES. But I also discovered that it was possible
  64. to port it with not to much effort (WRONG THERE) so I begun.
  65.  
  66. For the Amiga there is only three important files + one directory.
  67.  
  68. src/Amigamesa.c        The mesa GL Amiga implementation 
  69.             (ddsample.c with some Amiga code)
  70. src-tk/Awindow.c    The tk (and aux) machine specific code)
  71. include/GL/Amigamesa.h    The prototypes for Amigamesa
  72.  
  73. Amiga/#?
  74.  
  75. Installing
  76. ==========
  77. If you have the big archive you just have to unpack is where you want it.
  78. If you have the updatepackage you need the orginal mesa archive and then
  79. you will nead lha in your path and run the installer script in /amiga 
  80. (or just unpack AMesa.lha yourself)
  81.  
  82.  
  83. Compiling
  84. =========
  85. If you use SAS just execute mklib.amiga (will appear if you have installed it correctly)
  86. For compiling with gcc you have to enter the command "make amiga-gcc". Via the 
  87. environment variable LOCALFLAGS you can specify additional optimizations (for instance -m68040).
  88.  
  89. To use CyberGfx you have to define ADISP_CYBERGFX in include/gl/amigamesa.h
  90. (you nead the includes for it (ftp.phase5.de))
  91.  
  92. About the code.
  93. ===============
  94. The Code is compiled with cpu=020 math=ieee 
  95. If you would like it different then use the /Amiga/scoptions read next statement
  96. The code is by defult amiga standard graphics If you for some unknown don't want
  97. this there is a define in top of  include/gl/amigamesa.h
  98.  
  99. The common scoptions file is in /Amiga
  100. Here exists a scoption that is used in the WHOLE package, change math here
  101. and it will reflect in all dirs
  102.  
  103. In /Amiga/library there are previews of files to the shared-library version
  104. (This doesn't work yet but should give you an idea of how to use it)
  105.  
  106. In /Amiga/Examples there should be some amiga-demo code,
  107. but I've got no code yet so feel free to send me your own examples.
  108.  
  109. All tk actions in tkExec are not finished. But most of them is. (low priority)
  110.  
  111. Most of the examples work. (ALL?)
  112.  
  113. etc. etc.
  114.  
  115. Write your own OpenGL code
  116. ==========================
  117. 1. For a easy start, look at the examples in /book/ and modify them
  118.    The examples uses a portable layer toolkit Not amiga specific at all
  119.  
  120. Until The shared library is ready you have to define AMIGALIB when
  121. using <GL/gl.h>
  122.  
  123. 2. For a better amigaprogram just open a window (on your favourite screen) and
  124.     add a few lines in your source:
  125.  
  126. -----------------------------------------------------------------------------
  127. /* ADD where you want it  */
  128. #include <GL/gl.h>
  129.  
  130. Init()         /* sets up viewport and projections */
  131.   {
  132.   glMatrixMode (GL_PROJECTION);      /*    prepare for and then */ 
  133.   glLoadIdentity ();         /*  define the projection */
  134.   glFrustum (-1.0, 1.0, -1.0, 1.0, 1.5, 20.0);/*  transformation */
  135.   glMatrixMode (GL_MODELVIEW);    /*  back to modelview matrix*/
  136.   glViewport (0, 0, 200, 200);    /*  define the viewport     */
  137. }     /*          ^  ^  ^^^  ^^^--- The size of the mesa/openGL window  */
  138.     
  139.  
  140.  
  141. /* ADD In after you opened your window */
  142.  
  143. struct amigamesa_context *glcont;
  144.  
  145.     glcont=AmigaMesaCreateContextTags( 
  146.                         AMA_DrawMode,AMESA_AGA,
  147.                         AMA_Window,(unsigned long)        test_window,    // My Windowptr
  148.                         AMA_RastPort,(unsigned long)    test_window->RPort,
  149.                         AMA_Screen,(unsigned long)        test_window->WScreen,
  150.                         AMA_DoubleBuf,                        GL_FALSE, // or GL_TRUE
  151.                         AMA_RGBMode,                        GL_TRUE, //   -"-
  152.                         AMA_Left,                            test_window->BorderLeft,          // offset from left edgr
  153.                         AMA_Bottom,                            test_window->BorderBottom+1,    // offset from bottom edgr
  154.                         TAG_DONE,0);
  155.  
  156. // Neaded tags is   AMA_RastPort,AMA_Screen   if you supply AMA_Window
  157. // it looks for RastPort and Screen in it so a Window_ptr will do.
  158.  
  159. if (glcont)
  160.  {
  161.  AmigaMesaMakeCurrent(glcont,glcont->buffer);
  162.  /* All your gl comands */
  163.  /*handle_window_events(test_window);    or whatever */
  164.  AmigaMesaDestroyContext(glcont);
  165. }
  166.  
  167. /* Don't forget to call glViewport() when you resize the window */
  168. ------------------------------------------------------------------------------
  169. if you set doublebuff to GL_TRUE then you just switch buffer with
  170. AmigaMesaSwapBuffers(glcont);
  171.  
  172. For more info on the internal of the Amiga port you can check the files
  173.   src/Amigamesa.c and include/GL/Amigamesa.h for tk check src-tk/Awindow.c
  174. And info on how to write your own gfx-routines read include/GL/amigamesa.h for
  175. more instructions.
  176.  
  177. THINGS THAT MAY GO WRONG
  178. ========================
  179. Remember GL ALWAYS render with (0,0) in the BOTTOM left corner.
  180.  
  181. If you use SAS you have to use the latest version (v 6.57), there is some bugs
  182.  in the older version's you can get free upgrades on aminet.
  183.  
  184.  
  185. WARNING The api has changed on AmigaMesaCreateContext() it is now called with
  186.     a taglist. Read /include/GL/amigamesa.h
  187.  
  188. Scoptions that should not be changed is  Precision=MIXED, NoStackExtend, NoStackCheck.
  189.  
  190. It compiles but all examples crash everytime: 
  191.     Set your stack high about 50kb or more.
  192.  
  193. Linking complains about not finding _glBegin(): or @glBegin():
  194.     You have compiled some code using the stack and some using registers as
  195.     parameter passing, You have to chose one of them and us it on both places.
  196.  
  197. The colors are really bad:
  198.     To emulate 24bit I alloc 255 colors in the beginning spread over the
  199.     palette and then use it. If you'd like better colors, buy a GFX-Card.
  200.     (And wait for gfx-card versions.)
  201.  
  202. Resizing is sometimes very very unhealthy.
  203.  
  204. Please keep in mind that since SAS pre 6.57 contains a few bugs thats could give you 
  205. problem please use the latest version of SAS (Aminet contains a uppgrade). 
  206. I have many users that repordet problems that disapered when thay upgaded SAS to 6.57
  207.  
  208.  
  209. LATEST VERSION:
  210. ===============
  211. http://www.efd.lth.se/~d94sz/amesa
  212.  
  213. TODO:
  214. =====
  215. Debugg.
  216. Fix resizing bug.
  217.  
  218.  
  219. FUTURE:
  220. =======
  221. A shared library would be nice. (I have started)
  222. Faster and better. (You may have some nice idea?)
  223.  
  224. HISTORY:
  225. ========
  226.         
  227. Release:
  228. 0.8 This code worked with Mesa 1.2.6 and all makefiles also.
  229.      But when I released it, Mesa 1.2.7 was released and some changes were made.
  230.      It didn't work.
  231.  
  232. 0.9 Makefiles is remapped to work with Mesa 1.2.7.
  233.      Double buffering works.
  234.      Implemented fast_poly_draw (big speed improvement).
  235.      tkExec a few more tests were done. (right & middle mousebutton is not
  236.      implemented)
  237.  
  238. 1.0 I've put a common scoption file in /Amiga (thanks to Kamil Iskra).
  239.      Due to the common scoptions you can change CPU and math more easy ,and
  240.      compiler options set to default math=ieee, cpu=020 so that it works on 
  241.      1200's and up 
  242.      Many bugfixes (thanks to Daniel Jönsson).
  243.      Have fixed the smakefile name collision with AMIWIN version.
  244.      Mesa 1.2.8 Fixed.
  245.      Spellcorrection of the docs were made by Peter Sandén.
  246.      (Blame him, not me!) 
  247.      All tk's windows are opened on a pubscreen named "MESA" if it exists.
  248.  
  249. 1.1 Faster and more stable (Many thanks to Jorge Acereda (JAM))
  250.      Faster pen usage now it allocates 255 pens and use them (thanks to
  251.      Stefan Burström)
  252.      A few enhancements here and there.
  253.      Fixed a smake bug ignore=A only works in the latest SAS version. Now I
  254.      have changed it to IGN=ALL (Thanx to everyone who reported this one)
  255.  
  256. 1.2 Removed math from smakefiles, SAS handles this better self. (Kamil Iskra)
  257.      Fixed a serious drawing bug (appeared when using GL_SMOTH).
  258.     Fixed a very flexible programming API for future gfx-board implementations
  259.      Added a BOOL AmigaMesaSetDefs(struct TagItem *tagList); usefull for future enhancements
  260.     ***'API change: AmigaMesaCreateContext uses taglist se include/GL/amigamesa.h
  261.     Faster on doublebuffer rendering. (Now I convert whole double buffer c2p)
  262.     Easier to integrate future gfx-cards routines. Look in include/GL/amigamesa.h
  263.     tk toolkit fixed to work better. Thanks to Georg 'Wulf' Krämer
  264.  
  265. 1.4 Uppdated to reflect Mesa 2.0
  266.      Small Bugfixes. Relesed With Mesa 2.0
  267.  
  268. 1.5 A few bugs intruduced in 1.4 was fixed (a workaround SAS oml/slink bug)
  269.     Due to a bug in SAS (oml/slink) 1.4 didn't work, this version should work better.
  270.     
  271. 1.6 I haved splitted amigamesa into amigamesa and ADisp_AGA.c
  272.     this ensures higer modularity, and becomes easier to se what is neaded to port
  273.     if you want to make your own gfx rutines.
  274.     ADisp_Cyb.c contains CyberGFX drawer rutines (Joerg Nilson)
  275.     It's also posible to use gcc now. (Joerg Nilson)
  276.     Now works with mesa 2.2.
  277.  
  278.  
  279. Due to my lack of time this will be my last relese of mesa, If you are interested to take over and mainten the source
  280. please feel free to do so, Just please let me know so I can put some info on my webpage.
  281.  
  282.  
  283.  
  284. Please contact me with suggestions and additional info. 
  285. You can reach me at: 
  286.  
  287. d94sz@efd.lth.se
  288.  
  289. Or mail:
  290.  
  291. Stefan Zivkovic
  292. Kämnärsv. 9L:225
  293. 226 46 LUND
  294.  
  295. Or Phone:
  296. +46 46 150763
  297.  
  298.  
  299. ============================= Archive contents =============================
  300.  
  301. Original  Packed Ratio    Date     Time    Name
  302. -------- ------- ----- --------- --------  -------------
  303.      293     170 41.9% 14-Nov-96 00:59:04 +descrip.mms
  304.      427     240 43.7% 03-Feb-97 20:13:10 +IAFA-PACKAGE
  305.      161     117 27.3% 13-Jun-96 01:41:00 +Imakefile
  306.    25267    9285 63.2% 19-Dec-94 18:56:58 +LICENSE
  307.    21870    4179 80.8% 25-Jun-97 20:18:14 +Make-config
  308.    10705    2908 72.8% 25-Jun-97 20:18:14 +Makefile
  309.      523     203 61.1% 25-Jun-97 20:18:14 +mklib.amiga
  310.      270     191 29.2% 16-Oct-96 00:35:04 +mms-config
  311.    35495   14129 60.1% 14-Mar-97 00:20:26 +README
  312.      645     383 40.6% 14-Mar-97 00:08:24 +README.3DFX
  313.    10871    5104 53.0% 25-Jun-97 20:18:14 +README.AMIGA
  314.     7075    2693 61.9% 06-Dec-95 17:44:52 +README.AMIWIN
  315.     3083    1218 60.4% 03-Feb-97 07:54:38 +README.BEOS
  316.     4665    1998 57.1% 23-Mar-97 05:51:30 +README.DOS
  317.     2137    1108 48.1% 27-Aug-96 23:29:56 +README.GLUT
  318.      250     178 28.8% 13-Aug-96 03:50:46 +README.OS2
  319.      660     405 38.6% 16-Oct-96 00:48:20 +README.VMS
  320.    13861    5667 59.1% 14-Mar-97 00:18:28 +VERSIONS
  321.       35      35  0.0% 18-Dec-96 18:14:56 +xlib.opt
  322.     8028    2590 67.7% 03-Feb-97 20:08:18 +glaux.h
  323.      147     114 22.4% 07-Jan-97 11:08:34 +MESADJ.BAT
  324.     1038     428 58.7% 23-Mar-97 05:51:32 +MESADOS.BAT
  325.     3237    1461 54.8% 07-Jan-97 20:23:54 +mklib.aix
  326.      555     210 62.1% 07-Jan-97 20:23:54 +mklib.amiwin
  327.      444     288 35.1% 07-Jan-97 20:24:56 +mklib.freebsd
  328.      611     375 38.6% 07-Jan-97 20:23:56 +mklib.hpux
  329.      923     551 40.3% 07-Jan-97 20:27:18 +mklib.irix5
  330.      914     549 39.9% 07-Jan-97 20:27:18 +mklib.irix6-32
  331.      916     551 39.8% 07-Jan-97 20:27:18 +mklib.irix6-64
  332.      917     549 40.1% 07-Jan-97 20:27:18 +mklib.irix6-n32
  333.     1004     555 44.7% 07-Jan-97 20:24:30 +mklib.linux
  334.      523     294 43.7% 07-Jan-97 20:24:22 +mklib.netbsd
  335.      585     302 48.3% 07-Jan-97 20:24:16 +mklib.openbsd
  336.      657     359 45.3% 08-Mar-97 00:56:06 +mklib.osf1
  337.      557     297 46.6% 07-Jan-97 20:24:12 +mklib.solaris
  338.     5694    2489 56.2% 23-Mar-97 05:48:02 +STARTUP.MK
  339.     2807    1243 55.7% 06-Jan-96 21:56:54 +dosmesa.h
  340.     2099     900 57.1% 03-Feb-97 20:03:24 +FooMesa.h
  341.    48822   10653 78.1% 11-Mar-97 00:27:54 +gl.h
  342.    13786    3132 77.2% 17-Feb-97 17:14:36 +gl_mangle.h
  343.    11060    3338 69.8% 19-Feb-97 10:14:02 +glu.h
  344.     2717     981 63.8% 03-Feb-97 19:16:44 +glu_mangle.h
  345.     5542    2037 63.2% 03-Feb-97 19:15:52 +glx.h
  346.     1939     803 58.5% 03-Feb-97 19:16:34 +glx_mangle.h
  347.     3068    1336 56.4% 19-Feb-97 10:14:04 +gmesa.h
  348.     6816    2632 61.3% 19-Feb-97 10:14:04 +osmesa.h
  349.     2602    1205 53.6% 30-Oct-96 03:12:52 +svgamesa.h
  350.     2799    1297 53.6% 22-Feb-97 16:49:04 +wmesa.h
  351.     6583    2230 66.1% 03-Feb-97 20:08:18 +gltk.h
  352.    11907    4227 64.4% 25-Jun-97 20:18:20 +Amigamesa.h
  353.     6478    2243 65.3% 30-Oct-96 03:13:04 +xmesa.h
  354.      917     325 64.5% 05-May-96 23:58:12 +clgd5470.h
  355.     1112     394 64.5% 06-May-96 23:31:22 +clgd5471.h
  356.      627     294 53.1% 06-May-96 23:50:40 +clgd5472.h
  357.     2227     891 59.9% 06-May-96 23:24:48 +clgd547x.h
  358.     2393    1142 52.2% 06-May-96 23:28:36 +cmesa.h
  359.     6800    1502 77.9% 05-May-96 23:58:14 +compiler.h
  360.    27511    5364 80.5% 06-May-96 23:30:24 +davinci.h
  361.     3891     839 78.4% 06-May-96 23:51:54 +graphics.h
  362.      114     105  7.8% 06-May-96 23:51:34 +lut.h
  363.      157      99 36.9% 05-May-96 23:58:14 +misc.h
  364.     1940     528 72.7% 06-May-96 23:49:36 +type.h
  365.      541     340 37.1% 16-Oct-96 00:45:00 +descrip.mms
  366.      596     317 46.8% 30-May-96 01:18:56 +Imakefile
  367.     2167    1099 49.2% 25-Jun-97 20:18:28 +Makefile
  368.     1449     789 45.5% 03-Feb-97 19:49:16 +Makefile.BeOS
  369.     1297     716 44.7% 06-Jan-97 13:53:20 +MAKEFILE.DJ
  370.     1400     751 46.3% 07-Jan-97 10:41:44 +MAKEFILE.DOS
  371.     1505     857 43.0% 14-May-96 23:39:42 +Makefile.NeXT
  372.     1991    1027 48.4% 24-Nov-96 19:17:48 +Makefile.OpenStep
  373.     1502     545 63.7% 17-May-96 02:22:44 +mesatkos2.def
  374.      118      87 26.2% 17-May-96 02:23:00 +MesaTkos2.rsp
  375.    10663    3263 69.3% 29-Jan-97 18:52:28 +README
  376.     9058    3843 57.5% 28-Apr-95 18:38:36 +README1
  377.    18161    5970 67.1% 25-Jun-97 20:18:28 +Awindow.c
  378.     2062     635 69.2% 22-May-96 17:56:04 +cursor.c
  379.     8835    1864 78.9% 13-Feb-97 19:43:08 +event.c
  380.   273995   45737 83.3% 23-Apr-96 20:57:42 +font.c
  381.     8661    1642 81.0% 13-Feb-97 19:44:16 +getset.c
  382.     4851    1392 71.3% 23-Apr-96 20:57:40 +image.c
  383.      997     437 56.1% 16-Apr-96 15:03:56 +private.h
  384.        0       0  0.0% 25-Jun-97 20:18:28 +SCOPTIONS
  385.    12406    1424 88.5% 23-Apr-96 20:57:40 +shapes.c
  386.     2665    1230 53.8% 25-Jun-97 20:18:28 +Smakefile
  387.    15520    4680 69.8% 03-Feb-97 19:32:14 +tkbeos.cpp
  388.    33048    9086 72.5% 07-Jan-97 11:06:40 +tkdos.c
  389.    28996    8451 70.8% 24-Nov-96 20:41:50 +tkwndws.c
  390.    19383    3601 81.4% 13-Feb-97 19:43:10 +window.c
  391.      732     160 78.1% 17-Feb-97 20:29:22 +depend
  392.      736     417 43.3% 16-Oct-96 00:44:22 +descrip.mms
  393.      725     348 52.0% 30-May-96 01:18:40 +Imakefile
  394.     1690     922 45.4% 27-Sep-96 01:22:38 +Makefile
  395.     1641     903 44.9% 03-Feb-97 19:56:12 +Makefile.BeOS
  396.     1664     893 46.3% 06-Jan-97 13:37:34 +MAKEFILE.DJ
  397.     1670     893 46.5% 07-Jan-97 10:42:24 +MAKEFILE.DOS
  398.     1578     863 45.3% 22-Oct-96 01:31:10 +Makefile.NeXT
  399.     1690     922 45.4% 30-Nov-96 14:34:38 +Makefile.OpenStep
  400.     1537     549 64.2% 24-Apr-96 02:20:08 +MesaGLUos2.def
  401.      180     104 42.2% 24-Apr-96 02:17:36 +MesaGLUos2.rsp
  402.      765     165 78.4% 16-Oct-96 00:43:56 +mms_depend
  403.     1500     762 49.2% 20-Feb-96 09:52:02 +README2
  404.     7628    2714 64.4% 11-Mar-97 00:58:40 +glu.c
  405.     1593     820 48.5% 27-Sep-96 01:20:42 +gluP.h
  406.    16830    4247 74.7% 27-Sep-96 01:21:20 +mipmap.c
  407.    15792    3694 76.6% 27-Sep-96 23:11:36 +nurbs.c
  408.     5282    1808 65.7% 27-Sep-96 01:21:28 +nurbs.h
  409.    12735    3095 75.6% 27-Sep-96 23:12:40 +nurbscrv.c
  410.    37132    6346 82.9% 27-Sep-96 23:13:04 +nurbssrf.c
  411.    23677    5465 76.9% 27-Sep-96 01:21:38 +nurbsutl.c
  412.    26481    6530 75.3% 27-Sep-96 01:21:46 +polytest.c
  413.    10474    3176 69.6% 29-Jan-97 19:05:46 +project.c
  414.    18896    4461 76.3% 12-Mar-97 02:16:02 +quadric.c
  415.     7694    2205 71.3% 12-Nov-96 01:23:30 +tess.c
  416.     2278    1025 55.0% 17-Feb-97 17:24:30 +tess.h
  417.     9768    2092 78.5% 17-Feb-97 17:25:28 +tesselat.c
  418.     1176     263 77.6% 19-Dec-94 18:56:56 +3d.h
  419.      552     352 36.2% 16-Oct-96 00:43:30 +descrip.mms
  420.      598     322 46.1% 30-May-96 01:18:18 +Imakefile
  421.     1327     747 43.7% 14-Sep-96 22:36:30 +Makefile
  422.     1407     796 43.4% 03-Feb-97 19:50:04 +Makefile.BeOS
  423.     1337     750 43.9% 06-Jan-97 13:41:12 +MAKEFILE.DJ
  424.     1438     781 45.6% 07-Jan-97 10:42:08 +MAKEFILE.DOS
  425.     1402     793 43.4% 02-Dec-96 20:15:20 +Makefile.NeXT
  426.     1327     747 43.7% 30-Nov-96 14:34:50 +Makefile.OpenStep
  427.     1838     593 67.7% 24-Apr-96 03:16:18 +Mesaauxos2.def
  428.      117      86 26.4% 24-Apr-96 02:53:36 +Mesaauxos2.rsp
  429.        0       0  0.0% 25-Jun-97 20:18:26 +SCOPTIONS
  430.     2615    1230 52.9% 25-Jun-97 20:18:26 +Smakefile
  431.      425     263 38.1% 05-Mar-96 19:26:26 +font.c
  432.     9933    2388 75.9% 03-Feb-97 19:51:30 +glaux.c
  433.      226     143 36.7% 05-Mar-96 19:26:26 +image.c
  434.        0       0  0.0% 25-Jun-97 20:18:26 +SCOPTIONS
  435.    27796    5155 81.4% 25-Apr-96 19:15:34 +shapes.c
  436.     2524    1207 52.1% 25-Jun-97 20:18:26 +Smakefile
  437.     6711    1782 73.4% 05-Mar-96 19:26:26 +teapot.c
  438.     3046    1078 64.6% 05-Mar-96 19:26:26 +vect3d.c
  439.     2335     647 72.2% 05-Mar-96 19:26:26 +xxform.c
  440.     1618     764 52.7% 24-Nov-96 19:06:54 +descrip.mms
  441.     1474     582 60.5% 30-May-96 05:07:30 +Imakefile
  442.     2396    1236 48.4% 25-Jun-97 20:18:22 +Makefile
  443.     2173    1166 46.3% 03-Feb-97 19:53:26 +Makefile.BeOS
  444.     2066    1105 46.5% 22-Oct-96 01:35:32 +Makefile.NeXT
  445.     7350    1114 84.8% 24-Nov-96 19:06:44 +mms_depend
  446.    10460    2466 76.4% 13-Mar-97 03:08:28 +accum.c
  447.     1427     719 49.6% 13-Mar-97 03:08:34 +accum.h
  448.     3463    1390 59.8% 13-Mar-97 03:08:28 +alpha.c
  449.     1235     682 44.7% 13-Mar-97 03:08:34 +alpha.h
  450.     6526    1734 73.4% 13-Mar-97 03:08:28 +alphabuf.c
  451.     2350     800 65.9% 13-Mar-97 03:08:34 +alphabuf.h
  452.    74693   11352 84.8% 13-Mar-97 03:08:28 +api.c
  453.    20150    3943 80.4% 13-Mar-97 03:08:28 +attrib.c
  454.     1270     659 48.1% 13-Mar-97 03:08:34 +attrib.h
  455.     7136    1126 84.2% 17-Feb-97 20:29:22 +depend
  456.     7352    1122 84.7% 06-Jan-96 21:56:54 +DEPEND.DOS
  457.     2386    1238 48.1% 03-Mar-97 09:14:42 +MAKEFILE.DJ
  458.     2424    1264 47.8% 23-Mar-97 05:43:12 +MAKEFILE.DOS
  459.     2222    1160 47.7% 24-Nov-96 19:18:36 +Makefile.OpenStep
  460.    10525    2398 77.2% 24-Apr-96 00:29:44 +MesaGLos2.def
  461.      620     254 59.0% 24-Nov-96 19:07:22 +MesaGLos2.rsp
  462.     5763    2043 64.5% 13-Mar-97 03:08:28 +bitmap.c
  463.     1791     740 58.6% 13-Mar-97 03:08:34 +bitmap.h
  464.    13998    3448 75.3% 13-Mar-97 03:08:28 +blend.c
  465.     1714     780 54.4% 13-Mar-97 03:08:34 +blend.h
  466.     3825    1290 66.2% 13-Mar-97 03:08:28 +bresenhm.c
  467.     5055    1565 69.0% 13-Mar-97 03:08:34 +bresenhm.h
  468.    29517    6568 77.7% 13-Mar-97 03:08:28 +clip.c
  469.     1968     841 57.2% 13-Mar-97 03:08:34 +clip.h
  470.    40748    7972 80.4% 13-Mar-97 03:08:28 +cmesa.c
  471.     2440     744 69.5% 24-Nov-96 20:39:56 +colors.h
  472.     3508    1521 56.6% 13-Mar-97 03:08:34 +config.h
  473.    51369   12617 75.4% 14-Mar-97 00:24:50 +context.c
  474.     4375    1590 63.6% 13-Mar-97 03:08:34 +context.h
  475.    14695    3161 78.4% 13-Mar-97 03:08:28 +copypix.c
  476.     1227     674 45.0% 13-Mar-97 03:08:34 +copypix.h
  477.    14875    4069 72.6% 13-Mar-97 03:08:34 +dd.h
  478.    20342    4985 75.4% 13-Mar-97 03:08:28 +ddsample.c
  479.    20032    3862 80.7% 13-Mar-97 03:08:28 +depth.c
  480.     3040    1017 66.5% 13-Mar-97 03:08:34 +depth.h
  481.    80009   15910 80.1% 13-Mar-97 03:08:28 +dlist.c
  482.    14902    2603 82.5% 13-Mar-97 03:08:34 +dlist.h
  483.    32551    8176 74.8% 02-Mar-97 16:46:26 +dosmesa.c
  484.    60104   11643 80.6% 13-Mar-97 03:08:28 +draw.c
  485.     2157     855 60.3% 13-Mar-97 03:08:34 +draw.h
  486.    29614    5939 79.9% 13-Mar-97 03:08:28 +drawpix.c
  487.     1291     711 44.9% 13-Mar-97 03:08:34 +drawpix.h
  488.    18873    3671 80.5% 13-Mar-97 03:08:28 +enable.c
  489.     1344     670 50.1% 13-Mar-97 03:08:34 +enable.h
  490.    73269   11029 84.9% 13-Mar-97 03:08:30 +eval.c
  491.     3555     976 72.5% 13-Mar-97 03:08:34 +eval.h
  492.    10209    2535 75.1% 13-Mar-97 03:08:30 +feedback.c
  493.     2086     898 56.9% 13-Mar-97 03:08:34 +feedback.h
  494.     2030     931 54.1% 13-Mar-97 03:08:34 +fixed.h
  495.    11749    2360 79.9% 13-Mar-97 03:08:30 +fog.c
  496.     1694     767 54.7% 13-Mar-97 03:08:34 +fog.h
  497.   102118   16688 83.6% 13-Mar-97 03:08:30 +get.c
  498.     1341     673 49.8% 13-Mar-97 03:08:34 +get.h
  499.    42198   10958 74.0% 13-Mar-97 03:08:30 +glx.c
  500.    18890    4143 78.0% 13-Mar-97 03:08:30 +image.c
  501.     2645    1014 61.6% 13-Mar-97 03:08:34 +image.h
  502.     4874    1605 67.0% 13-Mar-97 03:08:30 +interp.c
  503.     3432    1338 61.0% 13-Mar-97 03:08:34 +interp.h
  504.    44961    9724 78.3% 13-Mar-97 03:08:30 +light.c
  505.     3850    1078 72.0% 13-Mar-97 03:08:34 +light.h
  506.    23689    4418 81.3% 13-Mar-97 03:08:30 +lines.c
  507.     1230     665 45.9% 13-Mar-97 03:08:34 +lines.h
  508.    17834    2290 87.1% 13-Mar-97 03:08:30 +logic.c
  509.     2203     815 63.0% 13-Mar-97 03:08:34 +logic.h
  510.     6174    2262 63.3% 13-Mar-97 03:08:34 +macros.h
  511.     5002    1510 69.8% 13-Mar-97 03:08:30 +masking.c
  512.     2376     849 64.2% 13-Mar-97 03:08:34 +masking.h
  513.    22111    6195 71.9% 13-Mar-97 03:08:30 +matrix.c
  514.     2114     852 59.6% 13-Mar-97 03:08:34 +matrix.h
  515.    12824    3232 74.7% 13-Mar-97 03:08:30 +misc.c
  516.     1734     778 55.1% 13-Mar-97 03:08:34 +misc.h
  517.    36320    7406 79.6% 13-Mar-97 03:08:30 +osmesa.c
  518.    13925    2933 78.9% 13-Mar-97 03:08:30 +pb.c
  519.     4225    1559 63.1% 13-Mar-97 03:08:34 +pb.h
  520.    25322    4902 80.6% 13-Mar-97 03:08:30 +pixel.c
  521.     2564     919 64.1% 13-Mar-97 03:08:34 +pixel.h
  522.    18110    3895 78.4% 13-Mar-97 03:08:30 +pointers.c
  523.     1237     664 46.3% 13-Mar-97 03:08:34 +pointers.h
  524.    15653    3464 77.8% 13-Mar-97 03:08:30 +points.c
  525.     1155     647 43.9% 13-Mar-97 03:08:34 +points.h
  526.     3658    1254 65.7% 13-Mar-97 03:08:30 +polygon.c
  527.     1484     715 51.8% 13-Mar-97 03:08:34 +polygon.h
  528.    25273    4629 81.6% 13-Mar-97 03:08:30 +readpix.c
  529.     1239     676 45.4% 13-Mar-97 03:08:34 +readpix.h
  530.     2833    1235 56.4% 13-Mar-97 03:08:30 +scissor.c
  531.     1465     716 51.1% 13-Mar-97 03:08:34 +scissor.h
  532.    25663    4400 82.8% 13-Mar-97 03:08:30 +span.c
  533.     2577     875 66.0% 13-Mar-97 03:08:34 +span.h
  534.    22756    4294 81.1% 13-Mar-97 03:08:30 +stencil.c
  535.     2391     857 64.1% 13-Mar-97 03:08:34 +stencil.h
  536.    13897    3303 76.2% 13-Mar-97 03:08:30 +svgamesa.c
  537.    68031    9541 85.9% 13-Mar-97 03:08:30 +teximage.c
  538.     7046    1295 81.6% 13-Mar-97 03:08:34 +teximage.h
  539.    14276    2902 79.6% 13-Mar-97 03:08:30 +texobj.c
  540.     1910     799 58.1% 13-Mar-97 03:08:34 +texobj.h
  541.   110453   14382 86.9% 13-Mar-97 03:08:30 +texture.c
  542.     4254    1147 73.0% 13-Mar-97 03:08:34 +texture.h
  543.    23099    5057 78.1% 13-Mar-97 03:08:30 +triangle.c
  544.     1110     627 43.5% 13-Mar-97 03:08:34 +triangle.h
  545.    30026    8334 72.2% 14-Mar-97 00:25:20 +tritemp.h
  546.    42730   11155 73.8% 13-Mar-97 03:08:34 +types.h
  547.    40387    5947 85.2% 13-Mar-97 03:08:30 +varray.c
  548.     3127     898 71.2% 13-Mar-97 03:08:34 +varray.h
  549.    50388   11286 77.6% 25-Jun-97 20:18:26 +ADisp_AGA.c
  550.     1319     738 44.0% 13-Mar-97 03:08:32 +vb.c
  551.     3439    1564 54.5% 13-Mar-97 03:08:34 +vb.h
  552.     5381    1451 73.0% 13-Mar-97 03:08:32 +vertex.c
  553.     2254     809 64.1% 13-Mar-97 03:08:34 +vertex.h
  554.     3032    1362 55.0% 13-Mar-97 03:08:32 +winpos.c
  555.     2263     791 65.0% 13-Mar-97 03:08:34 +winpos.h
  556.    47156   12508 73.4% 28-Jan-97 21:31:28 +wmesa.c
  557.    46483   12123 73.9% 24-Nov-96 20:40:04 +wmesa_stereo.c
  558.     2555    1202 52.9% 24-Nov-96 20:42:30 +wmesadef.h
  559.     9426    3521 62.6% 13-Mar-97 03:14:54 +xfonts.c
  560.     8421    2328 72.3% 13-Mar-97 03:08:32 +xform.c
  561.     2579    1059 58.9% 13-Mar-97 03:08:34 +xform.h
  562.    46366   13075 71.8% 13-Mar-97 03:08:32 +xmesa1.c
  563.    87309   10718 87.7% 13-Mar-97 03:08:32 +xmesa2.c
  564.    57766    7847 86.4% 13-Mar-97 03:08:32 +xmesa3.c
  565.    12697    4569 64.0% 13-Mar-97 03:08:34 +xmesaP.h
  566.     3258    1322 59.4% 29-Jan-97 19:58:48 +bounce.c
  567.     5350    1724 67.7% 12-Mar-97 02:12:28 +clearspd.c
  568.     1571     554 64.7% 16-Oct-96 00:31:56 +descrip.mms
  569.     1573     585 62.8% 21-Oct-95 13:33:32 +fdraw.f
  570.      858     455 46.9% 21-Oct-95 13:34:36 +ftest.c
  571.     4666     953 79.5% 29-Jan-97 19:59:02 +gamma.c
  572.     2004     433 78.3% 30-May-96 02:30:58 +Imakefile
  573.     1611     891 44.6% 25-Jun-97 20:18:20 +Makefile
  574.      891     301 66.2% 25-Jun-97 20:18:26 +ADisp_AGA.h
  575.    46823    8605 81.6% 25-Jun-97 20:18:24 +ADisp_Cyb.c
  576.      304     177 41.7% 25-Jun-97 20:18:22 +ADisp_Cyb.h
  577.    13845    4480 67.6% 25-Jun-97 20:18:20 +AmigaMesa.c
  578.    32654    5963 81.7% 25-Jun-97 20:18:22 +api1.c
  579.    35601    5448 84.6% 25-Jun-97 20:18:22 +api2.c
  580.        0       0  0.0% 25-Jun-97 20:18:20 +SCOPTIONS
  581.     4329    1735 59.9% 25-Jun-97 20:18:20 +Smakefile
  582.     7699    2040 73.5% 29-Jan-97 19:59:12 +gears.c
  583.     2420    1074 55.6% 29-Jan-97 19:59:20 +glxdemo.c
  584.     3645    1547 57.5% 29-Jan-97 19:59:28 +glxpixmap.c
  585.     6105    2041 66.5% 29-Jan-97 19:59:42 +isosurf.c
  586.    41060    6850 83.3% 13-Feb-97 18:22:52 +morph3d.c
  587.     8428    3368 60.0% 29-Jan-97 20:00:36 +offset.c
  588.     3420    1329 61.1% 01-May-96 14:39:16 +osdemo.c
  589.     8422    2559 69.6% 29-Jan-97 20:01:30 +reflect.c
  590.     5775    1903 67.0% 21-Feb-97 20:29:18 +spectex.c
  591.     2844    1010 64.4% 29-Jan-97 20:00:46 +spin.c
  592.    15970    4967 68.8% 04-Mar-97 19:12:56 +stex3d.c
  593.     8054    2613 67.5% 28-Jul-95 19:03:56 +tess_demo.c
  594.     1380     606 56.0% 07-Jun-95 15:37:54 +test0.c
  595.     6428    1833 71.4% 29-Jan-97 20:01:06 +texobj.c
  596.     4322    1641 62.0% 12-Mar-97 02:12:38 +trispd.c
  597.     5330    2295 56.9% 29-Jan-97 19:42:28 +accanti.c
  598.     4631    1989 57.0% 29-Jan-97 19:42:12 +accnot.c
  599.     7307    2809 61.5% 29-Jan-97 19:42:28 +accpersp.c
  600.     8405    3594 57.2% 29-Jan-97 19:42:26 +accum.c
  601.    10102    1293 87.2% 29-May-96 04:38:14 +Imakefile
  602.     1448     766 47.0% 01-Aug-95 20:59:26 +Makefile
  603.     1868     727 61.0% 28-Jul-95 21:53:12 +NOTES
  604.     2260    1229 45.6% 19-Dec-94 18:57:22 +README
  605.   418278   67175 83.9% 02-Jun-95 14:30:14 +isosurf.dat
  606.        0       0  0.0% 25-Jun-97 20:18:20 +SCOPTIONS
  607.     2692    1248 53.6% 25-Jun-97 20:18:20 +Smakefile
  608.     7044    1868 73.4% 15-Oct-96 00:19:48 +vgears.c
  609.     1039     565 45.6% 16-Jan-96 16:03:22 +vindex.c
  610.     1355     565 58.3% 15-Oct-96 00:13:12 +vtest.c
  611.     1831     909 50.3% 29-Jan-97 20:01:44 +winpos.c
  612.     7481    2156 71.1% 29-Jan-97 20:01:14 +xdemo.c
  613.     3947    2017 48.8% 29-Jan-97 19:44:14 +aim.c
  614.     3483    1725 50.4% 29-Jan-97 19:42:26 +alpha.c
  615.     4430    2062 53.4% 29-Jan-97 19:42:24 +alpha3D.c
  616.     3839    1909 50.2% 29-Jan-97 19:42:22 +anti.c
  617.     3680    1881 48.8% 29-Jan-97 19:42:22 +antiindex.c
  618.     3683    1845 49.9% 29-Jan-97 19:42:22 +antipindex.c
  619.     3520    1774 49.6% 29-Jan-97 19:42:22 +antipoint.c
  620.     4650    2109 54.6% 29-Jan-97 19:42:22 +antipoly.c
  621.     3488    1760 49.5% 29-Jan-97 19:42:22 +bezcurve.c
  622.     4328    1982 54.2% 29-Jan-97 19:42:22 +bezmesh.c
  623.     3937    1868 52.5% 29-Jan-97 19:42:22 +bezsurf.c
  624.     4529    2031 55.1% 29-Jan-97 19:48:08 +checker.c
  625.     4533    2032 55.1% 29-Jan-97 19:48:24 +checker2.c
  626.     4398    1982 54.9% 29-Jan-97 19:48:28 +chess.c
  627.     3295    1690 48.7% 29-Jan-97 19:42:22 +clip.c
  628.     4417    1946 55.9% 29-Jan-97 19:42:22 +colormat.c
  629.     4480    1994 55.4% 29-Jan-97 19:42:22 +cone.c
  630.     3430    1757 48.7% 29-Jan-97 19:42:22 +cube.c
  631.     3604    1813 49.6% 29-Jan-97 19:42:22 +curve.c
  632.     3447    1773 48.5% 29-Jan-97 19:42:22 +depthcue.c
  633.     3983    1839 53.8% 18-Feb-97 17:24:20 +disk.c
  634.     8400    3330 60.3% 29-Jan-97 19:42:22 +dof.c
  635.     5496    2469 55.0% 29-Jan-97 19:45:28 +dofnot.c
  636.     3906    1879 51.8% 29-Jan-97 19:42:22 +double.c
  637.     3315    1661 49.8% 29-Jan-97 19:42:22 +drawf.c
  638.     5055    2212 56.2% 29-Jan-97 19:42:22 +feedback.c
  639.     5476    2482 54.6% 29-Jan-97 19:42:22 +fog.c
  640.     4348    2002 53.9% 29-Jan-97 19:42:22 +fogindex.c
  641.    11728    3082 73.7% 29-Jan-97 19:42:22 +font.c
  642.     5900    2703 54.1% 19-Dec-94 18:57:26 +jitter.h
  643.     3673    1809 50.7% 29-Jan-97 19:42:22 +light.c
  644.     3586    1738 51.5% 29-Jan-97 19:42:22 +linelist.c
  645.     4231    1948 53.9% 29-Jan-97 19:42:22 +lines.c
  646.     3541    1783 49.6% 29-Jan-97 19:42:22 +list.c
  647.     3702    1844 50.1% 29-Jan-97 19:42:22 +list2.c
  648.     3952    1929 51.1% 29-Jan-97 19:46:32 +maplight.c
  649.    10872    2671 75.4% 29-Jan-97 19:42:22 +material.c
  650.     5575    2200 60.5% 29-Jan-97 19:42:22 +mipmap.c
  651.     3858    1819 52.8% 29-Jan-97 19:42:20 +model.c
  652.     4380    2113 51.7% 29-Jan-97 19:42:20 +movelight.c
  653.     6033    2476 58.9% 29-Jan-97 19:42:20 +nurbs.c
  654.     5591    2551 54.3% 29-Jan-97 19:42:20 +pickdepth.c
  655.     4477    2109 52.8% 29-Jan-97 19:42:20 +pickline.c
  656.     5627    2578 54.1% 29-Jan-97 19:42:20 +picksquare.c
  657.     5257    2073 60.5% 29-Jan-97 19:42:20 +plane.c
  658.     3757    1830 51.2% 29-Jan-97 19:42:20 +planet.c
  659.     3907    1858 52.4% 29-Jan-97 19:42:20 +planetup.c
  660.     4647    1864 59.8% 29-Jan-97 19:42:20 +polys.c
  661.     3905    1829 53.1% 29-Jan-97 19:42:20 +robot.c
  662.     4273    1955 54.2% 29-Jan-97 19:42:20 +sccolorlight.c
  663.     4247    1938 54.3% 29-Jan-97 19:42:20 +scene.c
  664.     4121    1877 54.4% 29-Jan-97 19:42:20 +scenebamb.c
  665.     4151    1895 54.3% 29-Jan-97 19:42:20 +sceneflat.c
  666.     7026    2770 60.5% 29-Jan-97 19:48:40 +select.c
  667.     2627    1416 46.0% 29-Jan-97 19:42:20 +simple.c
  668.     3280    1665 49.2% 29-Jan-97 19:42:20 +smooth.c
  669.     3051    1599 47.5% 29-Jan-97 19:42:20 +sphere.c
  670.     5351    2291 57.1% 29-Jan-97 19:42:20 +stencil.c
  671.     5094    2223 56.3% 29-Jan-97 19:42:20 +stroke.c
  672.     4453    2124 52.3% 29-Jan-97 19:42:20 +surface.c
  673.     4931    2142 56.5% 29-Jan-97 19:42:20 +tea.c
  674.     4692    2013 57.0% 29-Jan-97 19:42:20 +teaambient.c
  675.     7328    2916 60.2% 29-Jan-97 19:49:36 +teapots.c
  676.     4379    2060 52.9% 29-Jan-97 19:42:20 +texgen.c
  677.     4887    2173 55.5% 29-Jan-97 19:42:18 +texturesurf.c
  678.        0       0  0.0% 25-Jun-97 20:18:20 +SCOPTIONS
  679.     2431    1127 53.6% 25-Jun-97 20:18:20 +Smakefile
  680.     5245    2365 54.9% 29-Jan-97 19:42:16 +trim.c
  681.     4406    2217 49.6% 29-Jan-97 19:42:16 +xfont.c
  682.    51607   40654 21.2% 19-Dec-94 18:56:28 +1.rgb
  683.    39632   34493 12.9% 19-Dec-94 18:56:28 +2.rgb
  684.    89287   55470 37.8% 19-Dec-94 18:56:28 +3.rgb
  685.    45167   32654 27.7% 19-Dec-94 18:56:28 +4.rgb
  686.     3598    1527 57.5% 03-Oct-95 18:38:48 +accum.c
  687.     6263    2001 68.0% 21-Jul-96 19:01:46 +bitmap1.c
  688.    42272    4027 90.4% 29-Jan-97 19:50:54 +bitmap2.c
  689.     7165    1963 72.6% 29-Jan-97 19:56:56 +blendeq.c
  690.     4256     677 84.0% 30-May-96 02:32:02 +Imakefile
  691.     1389     655 52.8% 25-Jun-97 20:18:20 +Makefile
  692.     1224     587 52.0% 28-Jul-95 21:53:42 +NOTES
  693.    14414    2864 80.1% 19-Dec-94 18:56:28 +README
  694.     3598    1334 62.9% 29-Jan-97 19:51:50 +blendxor.c
  695.     4311    1828 57.5% 23-Jan-96 14:27:52 +copy.c
  696.     4365    1648 62.2% 03-Oct-95 18:38:42 +cursor.c
  697.     5187    1829 64.7% 03-Oct-95 18:38:42 +depth.c
  698.    10487    3110 70.3% 29-Jan-97 19:57:30 +eval.c
  699.     7175    2306 67.8% 03-Oct-95 18:38:40 +fog.c
  700.     5784    2040 64.7% 03-Oct-95 18:38:40 +font.c
  701.     4420    1849 58.1% 23-Nov-96 15:54:16 +line.c
  702.    36524    6014 83.5% 14-Mar-97 00:22:48 +logo.c
  703.     6494    2230 65.6% 03-Oct-95 18:38:38 +nurb.c
  704.     5421    1749 67.7% 13-Mar-97 02:16:48 +oglinfo.c
  705.     8934    3183 64.3% 29-Jan-97 19:54:28 +olympic.c
  706.     8343    2838 65.9% 20-May-96 19:05:46 +overlay.c
  707.     4772    1862 60.9% 12-Jun-96 21:31:32 +point.c
  708.    11544    2475 78.5% 03-Oct-95 18:38:28 +prim.c
  709.    10681    3280 69.2% 29-Jan-97 19:54:38 +quad.c
  710.        0       0  0.0% 25-Jun-97 20:18:20 +SCOPTIONS
  711.     9312    2887 68.9% 03-Oct-95 18:38:28 +select.c
  712.     5761    2028 64.7% 03-Oct-95 18:38:28 +shape.c
  713.     2851    1281 55.0% 25-Jun-97 20:18:20 +Smakefile
  714.     8879    3008 66.1% 12-Sep-96 12:02:06 +speed.c
  715.    18175    4749 73.8% 11-Mar-97 01:01:46 +sphere.c
  716.     7089    2623 62.9% 20-Jan-96 20:11:30 +star.c
  717.     3385    1452 57.1% 03-Oct-95 18:38:24 +stencil.c
  718.     8534    2707 68.2% 29-Jan-97 19:55:58 +stretch.c
  719.     7892    2524 68.0% 03-Oct-95 18:38:24 +texture.c
  720.     8363    2836 66.0% 29-Jan-97 19:56:04 +tri.c
  721.    15056    4358 71.0% 29-Jan-97 19:57:54 +wave.c
  722.    17976    6986 61.1% 31-Jan-97 17:13:46 +COPYING
  723.     1289     665 48.4% 31-Jan-97 17:13:46 +ChangeLog
  724.    16009    5395 66.3% 31-Jan-97 17:13:46 +config.guess
  725.     4745    1870 60.5% 31-Jan-97 17:13:46 +config.status
  726.    16318    5310 67.4% 31-Jan-97 17:13:46 +config.sub
  727.    79791   19653 75.3% 15-Feb-97 23:12:54 +configure
  728.     4859    1993 58.9% 15-Feb-97 23:11:58 +configure.in
  729.     1274     610 52.1% 31-Jan-97 17:13:46 +ChangeLog
  730.      251     158 37.0% 31-Jan-97 17:13:46 +Cube
  731.      780     459 41.1% 31-Jan-97 17:13:46 +INSTALL
  732.     4388    1618 63.1% 31-Jan-97 17:13:46 +Makefile.in
  733.     2675    1404 47.5% 31-Jan-97 17:13:46 +README
  734.     1025     523 48.9% 31-Jan-97 17:13:46 +TODO
  735.     9022    2965 67.1% 31-Jan-97 17:13:46 +cube.c
  736.      648     306 52.7% 31-Jan-97 17:13:46 +Ed
  737.    21626    6170 71.4% 31-Jan-97 17:13:46 +ed.c
  738.    10887    3001 72.4% 31-Jan-97 17:13:46 +events
  739.     6953    2103 69.7% 31-Jan-97 17:13:46 +Makefile.in
  740.      355     190 46.4% 31-Jan-97 17:13:46 +Mcube
  741.    10192    3218 68.4% 31-Jan-97 17:13:46 +mcube.c
  742.      535     311 41.8% 31-Jan-97 17:13:46 +Tea
  743.    18882    6387 66.1% 31-Jan-97 17:13:46 +tea.c
  744.     1238     536 56.7% 31-Jan-97 17:13:46 +ChangeLog
  745.     6980    1903 72.7% 31-Jan-97 17:13:46 +GLwDrawA.h
  746.     4362    1580 63.7% 31-Jan-97 17:13:46 +GLwDrawAP.h
  747.     1051     631 39.9% 31-Jan-97 17:13:46 +GLwMDrawA.h
  748.     1054     632 40.0% 31-Jan-97 17:13:46 +GLwMDrawAP.h
  749.     2071    1061 48.7% 31-Jan-97 17:13:46 +Makefile
  750.     2030    1014 50.0% 31-Jan-97 17:13:46 +Makefile.in
  751.     1693     752 55.5% 31-Jan-97 17:13:46 +MesaDrawingArea.h
  752.     3927    1139 70.9% 31-Jan-97 17:13:46 +MesaDrawingAreaP.h
  753.      144     108 25.0% 31-Jan-97 17:13:46 +MesaMDrawingArea.h
  754.      148     110 25.6% 31-Jan-97 17:13:46 +MesaMDrawingAreaP.h
  755.      116      81 30.1% 31-Jan-97 17:13:46 +MesaMWorkstation.h
  756.      118      81 31.3% 31-Jan-97 17:13:46 +MesaMWorkstationP.h
  757.     4201    1067 74.6% 31-Jan-97 17:13:46 +MesaWorkstation.h
  758.     3204    1124 64.9% 31-Jan-97 17:13:46 +MesaWorkstationP.h
  759.     4771    1857 61.0% 31-Jan-97 17:13:46 +install-sh
  760.      420     231 45.0% 31-Jan-97 17:13:44 +ChangeLog
  761.     4354    1887 56.6% 31-Jan-97 17:13:44 +GLwCreateMDrawingArea.3x
  762.     2032     683 66.3% 31-Jan-97 17:13:44 +GLwCreateMDrawingArea.html
  763.      971     464 52.2% 31-Jan-97 17:13:44 +GLwCreateMDrawingArea.pod
  764.    29052    8528 70.6% 31-Jan-97 17:13:44 +GLwDrawingArea.3x
  765.    28843    7582 73.7% 31-Jan-97 17:13:44 +GLwDrawingArea.html
  766.    24689    6902 72.0% 31-Jan-97 17:13:44 +GLwDrawingArea.pod
  767.     3905    1745 55.3% 31-Jan-97 17:13:44 +GLwDrawingAreaMakeCurrent.3x
  768.     1162     492 57.6% 31-Jan-97 17:13:44 +GLwDrawingAreaMakeCurrent.html
  769.      545     308 43.4% 31-Jan-97 17:13:44 +GLwDrawingAreaMakeCurrent.pod
  770.     3868    1728 55.3% 31-Jan-97 17:13:44 +GLwDrawingAreaSwapBuffers.3x
  771.     1127     476 57.7% 31-Jan-97 17:13:44 +GLwDrawingAreaSwapBuffers.html
  772.      510     295 42.1% 31-Jan-97 17:13:44 +GLwDrawingAreaSwapBuffers.pod
  773.     2477    1164 53.0% 31-Jan-97 17:13:44 +Makefile.in
  774.     5969    2300 61.4% 31-Jan-97 17:13:44 +MesaDrawingArea.3x
  775.     3613    1079 70.1% 31-Jan-97 17:13:44 +MesaDrawingArea.html
  776.     2560     856 66.5% 31-Jan-97 17:13:44 +MesaDrawingArea.pod
  777.     7709    2554 66.8% 31-Jan-97 17:13:44 +MesaWorkstation.3x
  778.     9019    1452 83.9% 31-Jan-97 17:13:44 +MesaWorkstation.html
  779.     4141    1089 73.7% 31-Jan-97 17:13:44 +MesaWorkstation.pod
  780.     3616    1404 61.1% 31-Jan-97 17:13:44 +ChangeLog
  781.     1298     741 42.9% 31-Jan-97 17:13:44 +GLwCreateMDrawingArea.c
  782.    20799    5906 71.6% 31-Jan-97 17:13:44 +GLwDrawingArea.c
  783.     1224     709 42.0% 31-Jan-97 17:13:46 +GLwDrawingAreaMakeCurrent.c
  784.     1182     689 41.7% 31-Jan-97 17:13:44 +GLwDrawingAreaSwapBuffers.c
  785.     1366     770 43.6% 31-Jan-97 17:13:44 +GLwMakeCurrent.c
  786.     1061     628 40.8% 31-Jan-97 17:13:44 +GLwMDrawingArea.c
  787.     1370     774 43.5% 31-Jan-97 17:13:46 +GLwMMakeCurrent.c
  788.     5104    1595 68.7% 31-Jan-97 17:13:44 +Makefile.in
  789.     8603    2804 67.4% 31-Jan-97 17:13:46 +MesaDrawingArea.c
  790.       78      73  6.4% 31-Jan-97 17:13:44 +MesaMDrawingArea.c
  791.       52      52  0.0% 31-Jan-97 17:13:44 +MesaMWorkstation.c
  792.    20042    4608 77.0% 31-Jan-97 17:13:44 +MesaWorkstation.c
  793.    24543    6704 72.6% 13-Sep-96 00:39:48 +GLwDrawA.c
  794.     2996    1007 66.3% 25-Jun-97 20:18:18 +AmigaMesa.Install
  795.     1919    1050 45.2% 25-Jun-97 20:18:18 +AmigaMesa.Install.info
  796.    14298    4620 67.6% 03-Oct-96 01:45:34 +boilerplate.c
  797.      259     101 61.0% 13-Sep-96 00:40:04 +depend
  798.     6611    2407 63.5% 13-Sep-96 00:39:52 +GLwDrawA.h
  799.     4291    1650 61.5% 13-Sep-96 00:39:54 +GLwDrawAP.h
  800.     2030    1120 44.8% 13-Sep-96 00:39:54 +GLwMDrawA.c
  801.     2030    1120 44.8% 13-Sep-96 00:39:56 +GLwMDrawA.h
  802.     2031    1121 44.8% 13-Sep-96 00:39:56 +GLwMDrawAP.h
  803.      899     502 44.1% 08-Feb-97 07:52:14 +Makefile
  804.      873     487 44.2% 13-Sep-96 00:39:58 +Makefile~
  805.     2490    1352 45.7% 13-Sep-96 00:40:00 +README
  806.     1351     459 66.0% 25-Jun-97 20:18:16 +Build.info
  807.      290     174 40.0% 25-Jun-97 20:18:16 +SCoptions
  808.     1736    1052 39.4% 25-Jun-97 20:18:16 +SCoptions.info
  809.    23724    9656 59.2% 25-Jun-97 20:18:16 +FileReplace
  810.     4194    1538 63.3% 25-Jun-97 20:18:16 +FileReplace.cpp
  811.    58311    6554 88.7% 25-Jun-97 20:18:18 +Fixprotos
  812.    17967    3208 82.1% 25-Jun-97 20:18:18 +gl.fd
  813.    53801   10162 81.1% 25-Jun-97 20:18:18 +gl.h
  814.    15499    2560 83.4% 25-Jun-97 20:18:16 +gl_pragma.h
  815.      576     286 50.3% 25-Jun-97 20:18:18 +installscript
  816.     4472    1501 66.4% 25-Jun-97 20:18:18 +ht__colors.a
  817.     8234    1332 83.8% 25-Jun-97 20:18:18 +ht_colors.c
  818.      613     297 51.5% 25-Jun-97 20:18:18 +ht_colors.h
  819.      328     195 40.5% 25-Jun-97 20:18:18 +SCOPTIONS
  820.     1674    1075 35.7% 25-Jun-97 20:18:18 +SCoptions.info
  821.      423     260 38.5% 26-Aug-96 18:44:24 +errcheck.c
  822.     1380     609 55.8% 10-Oct-96 23:35:32 +glutskel.c
  823.      462     243 47.4% 26-Aug-96 19:00:24 +idproj.c
  824.     2578    1045 59.4% 26-Aug-96 19:01:12 +mwmborder.c
  825.     1346     410 69.5% 26-Aug-96 18:59:24 +projshad.c
  826.      440     261 40.6% 28-Aug-96 16:24:48 +README
  827.     6984    1977 71.6% 22-Nov-96 14:50:42 +readtex.c
  828.      849     413 51.3% 26-Aug-96 18:56:44 +winpos.c
  829.      136     106 22.0% 26-Aug-96 19:07:48 +xalloccolor.c
  830. -------- ------- ----- --------- --------
  831.  5478035 1485643 72.8% 27-Jun-97 00:01:56   527 files
  832.